home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-09-08 | 757 b | 16 lines |
- class indexOfDemo {
- public static void main(String args[]) {
- String s = "Now is the time for all good men " +
- "to come to the aid of their country " +
- "and pay their due taxes.";
- System.out.println(s);
- System.out.println("indexOf(t) = " + s.indexOf("t"));
- System.out.println("lastIndexOf(t) = " + s.lastIndexOf("t"));
- System.out.println("indexOf(the) = " + s.indexOf("the"));
- System.out.println("lastIndexOf(the) = " + s.lastIndexOf("the"));
- System.out.println("indexOf(t, 10) = " + s.indexOf("t" , 10));
- System.out.println("lastIndexOf(t, 50) = " + s.lastIndexOf("t" , 50));
- System.out.println("indexOf(the, 10) = " + s.indexOf("the", 10));
- System.out.println("lastIndexOf(the, 50) = " + s.lastIndexOf("the", 50));
- } }
-